var testing.matchList

9 uses

	testing (current package)
		testing.go#L458: 	matchList = flag.String("test.list", "", "list tests, examples, and benchmarks matching `regexp` then exit")
		testing.go#L490: 	matchList            *string
		testing.go#L2106: 	if *matchList != "" {
		testing.go#L2206: 	if _, err := matchString(*matchList, "non-empty"); err != nil {
		testing.go#L2207: 		fmt.Fprintf(os.Stderr, "testing: invalid regexp in -test.list (%q): %s\n", *matchList, err)
		testing.go#L2212: 		if ok, _ := matchString(*matchList, test.Name); ok {
		testing.go#L2217: 		if ok, _ := matchString(*matchList, bench.Name); ok {
		testing.go#L2222: 		if ok, _ := matchString(*matchList, fuzzTarget.Name); ok {
		testing.go#L2227: 		if ok, _ := matchString(*matchList, example.Name); ok {